import { Breakpoint } from "@mui/material"; /** * * * @param getValue the value the result object (undefined will be remove from result) * @param options * - breakpoints: list of Breakpoints to be iterate * - initialValue: if provided, will be used to compare if the value from getValue should be added or not * @returns object that can be passed to */ export declare const createSxResult: (getValue: (bp: Breakpoint, lastValue: T | undefined) => T | undefined, options?: { breakpoints?: Breakpoint[] | undefined; initialValue?: T | undefined; } | undefined) => Partial>>;