export interface NotFoundProps { message: string; illustration?: any; showButton?: boolean; onClick: () => void; buttonText?: string; [props: string]: any; } export declare const NotFound: ({ message, illustration, buttonText, showButton, onClick, ...props }: NotFoundProps) => import("@emotion/react/jsx-runtime").JSX.Element;