export interface Config { canisters?: Record; git?: boolean; verbose?: boolean; } export type CanisterConfig = RustConfig; export interface RustConfig { type: 'rust'; parts: RustDependency[]; } export interface RustDependency { package: string; version?: string; path?: string; git?: string; } export declare const configSchema: "strictNullChecks must be true in tsconfig to use JSONSchemaType"; interface LoadConfigArgs { directory: string; verbose: boolean; } export declare const loadConfig: ({ directory, verbose, }: LoadConfigArgs) => Promise; export {}; //# sourceMappingURL=config.d.ts.map