import { PropsWithChildren } from "react"; import { ColorsPaletteOption, AccelThemeConfigColors } from "../../types/AccelContext"; type AccelEnvConfig = { url: string; apiUrl: string; }; export type Props = { companyId: string; enterpriseId?: string; enterpriseSecret?: string; accessToken?: string; environment?: keyof typeof AccelEnvironment; theme?: AccelThemeConfigColors; usePlaidSandbox?: boolean; fillerData?: boolean; colors?: ColorsPaletteOption; apiUrl?: string; }; export declare const AccelEnvironment: Record; export declare const AccelProvider: ({ companyId, enterpriseId, enterpriseSecret, accessToken, environment, theme, fillerData, children, apiUrl: givenApiUrl, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element | null; export default AccelProvider;