import type { Generic } from 'adopted-style-sheets'; declare const loadingOptions: readonly ["eager", "lazy"]; export type Loading = (typeof loadingOptions)[number]; export type PropLoading = { loading: Loading; }; export declare function validateLoading(component: Generic.Element.Component, value?: Loading): void; export {};