import { type ReactNode, type ExoticComponent } from 'react'; /** * Function that selects all the meter bar layout slots from the children, and returns them identified. * @param children - Children for the MeterBarLayout. Should have the Label, Value, Chart and MinMaxLabel areas. * @returns An object with each children identified. */ export declare function extractSlots(children?: ReactNode): { label?: ReactNode; min?: ReactNode; max?: ReactNode; chart?: ReactNode; value?: ReactNode; icon?: ReactNode; legend?: ReactNode; providers?: { Component: ExoticComponent; props: Record; }; };