import { FC, PropsWithChildren, ReactNode } from 'react';
import { DialogContentProps } from '@lifespikes/ui/components/ui';
import { ClosableProps } from '@lifespikes/ui/types/global';
export interface SimpleDialogProps extends PropsWithChildren, ClosableProps, DialogContentProps {
    title?: string;
    description?: string;
    trigger?: ReactNode;
}
export declare const SimpleDialog: FC<SimpleDialogProps>;
