import { BreakPoint } from "./types";
/**
* The `bp` it can be used to easily map the breakpoints to the corresponding array,
* for example:
* @example
* ```
* function Example() {
* return ;
* }
* // This is the same as writing:
* function Example() {
* return ;
* }
* ```
*/
export declare function bp(object: {
[K in BreakPoint]?: T;
}): T[];