/// <reference types="react" />
import { ThemeColors } from '../styles/defaults/themes.interface';
interface InlinePromptProps {
    children: React.ReactNode;
    /**
     * @default 0.2
     */
    backgroundOpacity?: number;
    /**
     * @default surface20
     */
    backgroundColor?: keyof ThemeColors;
}
export declare const InlinePrompt: React.FC<InlinePromptProps>;
export {};
