/// <reference types="react" />
declare type GroupChooserProps = {
    open: boolean;
    onSuccess: (groupId: string) => void;
    onClose: () => void;
};
export declare const GroupChooserDialog: (props: GroupChooserProps) => JSX.Element;
export {};
