import '@oicl/openbridge-webcomponents/dist/components/keyboard-full/keyboard-full.js'; import type { ObcKeyboardFullType } from '@oicl/openbridge-webcomponents/dist/components/keyboard-full/keyboard-full.js'; import type { ObcTextInputFieldSize } from '@oicl/openbridge-webcomponents/dist/components/text-input-field/text-input-field.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; type?: ObcKeyboardFullType; showTopBar?: boolean; parameterName?: string; value?: string; placeholder?: string; showNumberRow?: boolean; inputSize?: ObcTextInputFieldSize; } export interface Events { onValueChange?: (event: CustomEvent<{ value: string; }>) => void; onDoneClick?: (event: CustomEvent<{ value: string; }>) => void; onCloseClick?: (event: CustomEvent) => void; } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcKeyboardFull: import("svelte").Component<$$ComponentProps, { ObcKeyboardFullType: typeof ObcKeyboardFullType; ObcTextInputFieldSize: typeof ObcTextInputFieldSize; }, "">; type ObcKeyboardFull = ReturnType; export default ObcKeyboardFull;