import * as React from 'react';
import type { BaseUIComponentProps } from '../../utils/types.js';
/**
 * A button that opens the dialog.
 * Renders a `<button>` element.
 *
 * Documentation: [Base UI Dialog](https://base-ui.com/react/components/dialog)
 */
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogTrigger.Props & React.RefAttributes<HTMLButtonElement>>;
declare namespace DialogTrigger {
    interface Props extends BaseUIComponentProps<'button', State> {
    }
    interface State {
        /**
         * Whether the dialog is currently open.
         */
        open: boolean;
    }
}
export { DialogTrigger };
