/** * Takes all prop related data and returns the props that needs to be applied to the component * * @param theme Theme object * @param colorModeProps Color mode information * @param componentTheme Theme object for the specific component * @param props Props passed by the user * @param windowWidth Width of the current window * @returns props to be applied */ export declare function calculateProps(theme: any, colorModeProps: any, componentTheme: any, props: any, windowWidth: any): any;