import type { StyleFunction } from "../style/index.js"; type ComposedArg = T extends Array<(arg: infer P) => any> ? P : never; type ComposedOwnerState = ComposedArg; export type ComposedStyleFunction>> = StyleFunction> & { filterProps: string[]; }; declare function compose>>(...styles: T): ComposedStyleFunction; export default compose;