import { DefaultTheme } from 'styled-components';
type ThemedProps = {
    theme: DefaultTheme;
};
declare const darken: (original: string, percent: number) => (props: ThemedProps) => string;
declare const lighten: (original: string, percent: number) => (props: ThemedProps) => string;
export { darken, lighten };
