import React from 'react';
export interface PromptsProps extends React.PropsWithChildren {
    className?: string;
    label?: string;
}
export declare const Prompts: React.FC<PromptsProps>;
