export declare type SchemaFieldSingletonType = ({ contract: any }: {
    contract: any;
}) => ({
    name: string;
});
export interface StorageSchema {
    [key: string]: SchemaFieldSingletonType;
}
