export interface HomeProps { /** * URL of the rest-on-couch instance. * @default 'http://localhost:3000/api/fake-roc' */ rocUrl?: string; /** * Name of the rest-on-couch database. * @default 'eln' */ database?: string; /** * Base url loaded by the iframe */ baseUrl?: string; /** * Default path the iframe should load, if no path is found in local storage */ defaultPath?: string; /** * List of possible page paths. Used for autocomplete in the path input. */ pages?: string[]; /** * Opt out of selecting a sample / selecting no sample before loading the iframe. * The sample selection UI will be hidden and the iframe will automatically load without a selected sample. */ noSampleSelection?: boolean; } export declare function Home(props: HomeProps): import("react").JSX.Element; //# sourceMappingURL=home.d.ts.map