import { FastboardApp, FastboardPlayer } from '@netless/fastboard-core'; export * from '@netless/fastboard-core'; import { FastboardProps, ReplayFastboardProps } from '@netless/fastboard-ui'; export * from '@netless/fastboard-ui'; export { GenericIcon, Language, Theme } from '@netless/fastboard-ui'; type MountProps = Omit; /** * @deprecated Use `createUI` instead. */ declare function mount(app: FastboardApp, div: HTMLDivElement, options?: MountProps): { update(props?: MountProps): void; destroy(): void; }; type ReplayProps = Omit; /** * @deprecated Use `createReplayUI` instead. */ declare function replay(player: FastboardPlayer, div: HTMLDivElement, options?: ReplayProps): { update(props?: ReplayProps): void; destroy(): void; }; export { MountProps, ReplayProps, mount, replay };