export type CreateRbacRoleDTO = {
    name: string;
    description?: string | null;
    metadata?: Record<string, unknown> | null;
};
export type CreateRbacRolesStepInput = {
    roles: CreateRbacRoleDTO[];
};
export declare const createRbacRolesStepId = "create-rbac-roles";
export declare const createRbacRolesStep: import("@medusajs/framework/workflows-sdk").StepFunction<CreateRbacRolesStepInput, import("@medusajs/types").RbacRoleDTO[]>;
//# sourceMappingURL=create-rbac-roles.d.ts.map