export type TCustomViewParentDataRefresherParams = {
    locators: string[];
    onRefreshDataRequested: (context: Record<string, unknown>) => void;
};
export declare const useCustomViewParentDataRefresher: (params: TCustomViewParentDataRefresherParams) => void;
