/** * Available shadow types. */ export declare enum ShadowType { DEFAULT = "default-shadow", HEADER = "header-shadow", FOOTER = "footer-shadow", TABLE = "table-shadow", GRAPH = "graph-shadow", CARD_CONTAINER = "card-container-shadow" } /** * Returns an array containing possible shadow type values. */ export declare const getShadowTypes: () => any[];