import * as React from 'react';
export type DialogDragContextProps = {
    onPointerDown?: (e: React.PointerEvent<HTMLElement>) => void;
};
export declare const DialogDragContext: React.Context<DialogDragContextProps | undefined>;
export declare const useDialogDragContext: () => {
    onPointerDown?: (e: React.PointerEvent<HTMLElement>) => void;
};
