export interface InitOptions { /** * Template to use. * * @default 'react' */ template?: 'react' | 'preact' | 'node' | 'cli' | 'web' | 'base'; } export declare function createRive(project: string | null, { template }: InitOptions): Promise;