import { Theme } from"../types";
/**
* Function to create a theme based on a schema.
* @paramschema - Schema with media query values.
* @returns The compiled schema for use into styled components.
*/exportdeclareconstcreateTheme: <T extendsTheme>(schema: T) => T;