import { type LoadingProps } from './loading.js'; /** Aligns to SplashPostData. */ export type SplashProps = { /** * Icon URL relative media directory or data URI. * * @example `'icon.png'`. */ appIconUri?: string | undefined; /** * The text of the web view launch button. * @default `'Launch App'` */ buttonLabel?: string | undefined; /** Secondary text describing the post. */ description?: string | undefined; /** * Web view URI relative client directory. * * @example `'game.html'`. * @default `'index.html'`. */ entryUri?: string | undefined; /** * Large text naming the post. * * @example `'What is this?'`. * @default `appDisplayName`. */ heading?: string | undefined; } & LoadingProps; export declare function Splash(props: Readonly): JSX.Element; //# sourceMappingURL=splash.d.ts.map