/**
 * props
 */
export interface Props {
    visible?: boolean;
    title?: string;
    subtit?: string;
    theme?: 'light' | 'dark';
    position?: string;
}
