import type { TaxPolicyRuleRecord, TaxRegimeRecord } from "./shared.js"; export declare function PolicyRuleSheet({ open, onOpenChange, rule, profileId, taxRegimes, onSuccess, }: { open: boolean; onOpenChange: (open: boolean) => void; rule?: TaxPolicyRuleRecord; profileId: string; taxRegimes: TaxRegimeRecord[]; onSuccess: () => void; }): import("react").JSX.Element;