export interface FolderPermissionDialogProps { open: boolean; onOpenChange: (open: boolean) => void; projectName: string; onAllowOnce: () => void; onAllowAlways: () => void; } export declare function FolderPermissionDialog({ open, onOpenChange, projectName, onAllowOnce, onAllowAlways, }: FolderPermissionDialogProps): import("react/jsx-runtime").JSX.Element; export declare namespace FolderPermissionDialog { var displayName: string; }