import { PrismaneTheme } from '../../../types'; type StylingProp = any | ((theme: PrismaneTheme) => any) | [any, { [pseudo: string]: any; }]; type StylingProps = { [key: string]: StylingProp; }; type StylingHook = (props: StylingProps) => any[]; declare const useStyling: StylingHook; export default useStyling; //# sourceMappingURL=useStyling.d.ts.map