import { Story } from '@storybook/react'; declare type SearchWrapperProps = { projectIds: string[]; workspaceId: string; isInResponsiveMode?: boolean; }; declare const _default: { title: string; component: ({ projectIds, workspaceId }: SearchWrapperProps) => JSX.Element; argTypes: { workspaceId: { table: { category: string; }; }; projectIds: { table: { category: string; }; }; platformUrl: { table: { category: string; }; }; isInResponsiveMode: { table: { category: string; }; }; }; args: { projectIds: string[]; workspaceId: string; platformUrl: string; isInResponsiveMode: boolean; }; }; export default _default; export declare const Playground: Story; export declare const EmbeddedSearch: Story;