import { FontFamilyToken, FontFamilyTokenRef, PropsWithTheme } from './types';
/**
 * Returns font that can be used inside styled-component.
 *
 * ```tsx
 * import styled from 'styled-components/macro';
 * import { typography } from '../theme';
 *
 * const StyledDiv = styled.div`
 *   font-family: ${font('body')};
 * `;
 * ```
 */
export declare function font(name: FontFamilyTokenRef): (props: PropsWithTheme) => FontFamilyToken;
