export declare type DynamicClosure = (
  userId?: string,
  businessId?: string
) => boolean;
export interface Role {
  static?: string[];
  dynamic?: {
    [name: string]: DynamicClosure;
  };
}
