export declare const defaultRoles: { Owner: { policies: { object: string; action: string; }[]; }; Viewer: { policies: { subject: string; object: string; action: string; }[]; }; Editor: { policies: { object: string; action: string; }[]; }; Podcaster: { policies: { object: string; action: string; }[]; }; }; export declare type DefaultRole = keyof typeof defaultRoles;