import "./FilterShareDialog.css"; export type FilterShareDialogProps = { open: boolean; onClose: () => void; /** `FilterID` of the filter to manage sharing for. */ filterId: number | null; /** Shown in the dialog heading. */ filterName?: string; "data-size"?: "sm" | "md" | "lg"; }; /** * Manages who a saved filter is shared with. * * Only a manager of the filter can load or change the grants — for anyone else * `sstp_WebSiteCMS_FilterBuilder_GetPermissions` returns nothing, so the list * simply stays empty. * * @example * ```jsx * setSharing(false)} /> * ``` */ export declare function FilterShareDialog({ open, onClose, filterId, filterName, "data-size": size, }: FilterShareDialogProps): import("react").JSX.Element;