import { CSSObject } from 'styled-components'; import { DefaultTheme } from 'styled-components'; import { FC } from 'react'; import { PropsWithChildren } from 'react'; declare interface addSXProps { sx?: SXProps; } declare type IThemeDevice = 'default' | 'tablet' | 'mobile'; export declare const Outside: FC; declare type OutsideProps = PropsWithChildren & addSXProps & { onOutsideClick: (event: MouseEvent) => void; }; declare type SXProps = ({ default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }) | ((theme: DefaultTheme) => { default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }); export { }