import React from "react"; export interface NDialogProps { children?: React.ReactNode; trigger?: React.ReactNode; title: string; description?: string; isOpen?: boolean; isDefaultOpen?: boolean; onOpenChange?: (isOpen: boolean) => void; isSwipeable?: boolean; className?: string; titleClassName?: string; descriptionClassName?: string; contentClassName?: string; } export declare const NDialog: React.NamedExoticComponent; //# sourceMappingURL=NDialog.d.ts.map