@hoosei/voxweave-react
Version:
A customizable and interactive voice UI component for React applications
13 lines (12 loc) • 436 B
TypeScript
import { type PropsWithChildren } from 'react';
interface VoxweaveConfig {
licenseKey: string;
apiUrl: string;
development?: boolean;
}
export declare function useVoxweave(): VoxweaveConfig;
interface VoxweaveProviderProps extends PropsWithChildren<{}> {
config: VoxweaveConfig;
}
export declare function VoxweaveProvider({ children, config }: VoxweaveProviderProps): import("react/jsx-runtime").JSX.Element;
export {};