import { BREAK_POINTS_ALL } from '../../config/index'; type BpValue = string | number | boolean | object | null | undefined; type BpKey = (typeof BREAK_POINTS_ALL)[number]; export type BpData = { base?: BpValue; } & Partial>; export type BpDataInput = boolean | string | number | BpValue[] | Partial> | Record | null | undefined; export default function getBpData(propVal: BpDataInput): BpData; export {};