type JsonRecord = Record; type SigningLocalAppFragment = { signingConfigs?: JsonRecord[]; products?: JsonRecord[]; }; interface MergeSigningOptions { includeSecrets?: boolean; } export declare function getSigningLocalPath(projectRoot: string): string; export declare function getSigningLocalExamplePath(projectRoot: string): string; export declare function readSigningLocalConfig(projectRoot: string): Promise; export declare function mergeSigningLocalConfigIntoBuildProfile(rawBuildProfileContents: string, signingLocalConfig: SigningLocalAppFragment | null, options?: MergeSigningOptions): string; export declare function hasSigningConfiguration(rawBuildProfileContents: string | null, signingLocalConfig?: SigningLocalAppFragment | null): boolean; export declare function hasSigningLocalConfiguration(signingLocalConfig: SigningLocalAppFragment | null): boolean; export declare function renderSigningLocalExampleConfig(): string; export {};