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