mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-27 15:41:39 +01:00
8 lines
252 B
TypeScript
8 lines
252 B
TypeScript
import * as React from 'react';
|
|
import { ToastProps } from '../types';
|
|
declare type ToastPositionerProps = Pick<ToastProps, 'style' | 'in'> & {
|
|
className?: string;
|
|
};
|
|
export declare const ToastPositioner: React.FC<ToastPositionerProps>;
|
|
export {};
|