import { DialogProps } from "../../elements/say/type";
import React from "react";
export declare function RawDialog(props: DialogProps): React.JSX.Element;
/**
 * Context-based wrapper component
 * Provides integration with the say context
 */
export declare function Dialog({ children, ...props }: DialogProps): React.JSX.Element | null;
export default Dialog;
/**
 * Default dialog component with Texts as children
 */
export declare function DefaultDialog(): React.JSX.Element;
