declare interface PullToRefreshVariant { } declare type PullToRefreshVariantMap = { [key in keyof PullToRefreshVariant]: Array; }; export declare type PullToRefreshVariantProps = Partial; export declare type PullToRefreshSlotName = "root" | "indicator"; export declare const pullToRefreshVariantMap: PullToRefreshVariantMap; export declare const pullToRefresh: (( props?: PullToRefreshVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [PullToRefreshVariantProps, Omit]; }