import type { ConfigurationBase } from "./common";
export declare type UserConfigurationType = 'user';
export interface UserConfiguration extends ConfigurationBase {
    type: UserConfigurationType;
}
export declare const isUserConfiguration: import("@altostra/type-validations").ObjectOfTypeValidation<UserConfiguration>;
export declare type ReservedUserConfigurationKey = never;
export declare const reservedUserConfigurationKeys: ReservedUserConfigurationKey[];
