export declare const asSecret: (s: any) => ISecret;
export type ISecretVariant = 'generic' | 'password' | 'key' | 'token';
export type ISecret = {
id: string;
variant: ISecretVariant;
name: string;
description: string;
value: string;
};
export default ISecret;