import { BotContext, InputSubmitContent } from '@/types'; import { ContinueChatResponse, Theme } from '@indite.io/schemas'; type Props = { input: NonNullable | undefined; chunkIndex: number; context: BotContext; theme: Theme; isInputPrefillEnabled: boolean; isBrandingEnabled?: boolean | undefined; hasError: boolean; onTransitionEnd: () => void; onSubmit: (content: InputSubmitContent) => void; onSkip: () => void; botContainerWidth?: string; }; export declare const FixedInputContainer: (props: Props) => import("solid-js").JSX.Element; export {}; //# sourceMappingURL=FixedInputContainer.d.ts.map