declare enum AdminButtonClasses { PrimaryAction = "admin:bg-hf-action admin:enabled:hover:bg-hf-action-dark", PrimaryCreate = "admin:bg-hf-create admin:enabled:hover:bg-hf-create-dark", PrimaryDestroy = "admin:bg-hf-destroy admin:enabled:hover:bg-hf-destroy-dark", SecondaryAction = "admin:bg-white admin:border admin:border-hf-action admin:text-hf-action admin:enabled:hover:bg-hf-action admin:enabled:hover:text-white admin:font-medium", SecondaryCreate = "admin:bg-white admin:border admin:border-hf-create admin:text-hf-create admin:enabled:hover:bg-hf-create admin:enabled:hover:text-white admin:font-medium", SecondaryDestroy = "admin:bg-white admin:border admin:border-hf-destroy admin:text-hf-destroy admin:enabled:hover:bg-hf-destroy admin:enabled:hover:text-white admin:font-medium", LinkDisabled = "admin:pointer-events-none admin:opacity-40", Tertiary = "admin:border admin:bg-white admin:border-hf-tertiary admin:text-hf-tertiary-dark admin:font-medium admin:enabled:hover:border-hf-tertiary-mid", Core = "admin:rounded-sm admin:text-white admin:w-fit admin:px-3 admin:py-[6px] admin:flex admin:items-center admin:justify-center admin:gap-2 admin:text-sm admin:font-bold admin:disabled:opacity-40" } export type AdminButtonType = 'action' | 'create' | 'destroy'; export default AdminButtonClasses; //# sourceMappingURL=admin-button-classes.d.ts.map