import type { HTMLAttributes } from 'react'; export type DialogBlockProps = { /** * Change the default rendered element for the one passed as a child, merging their props and behavior. * @default false */ asChild?: boolean; } & HTMLAttributes; /** * DialogBlock component, used to separate content in a Dialog. * * @example * * * Header * * * Content * * * Footer * * */ export declare const DialogBlock: import("react").ForwardRefExoticComponent<{ /** * Change the default rendered element for the one passed as a child, merging their props and behavior. * @default false */ asChild?: boolean; } & HTMLAttributes & import("react").RefAttributes>; //# sourceMappingURL=dialog-block.d.ts.map