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 {};
