import type { OutlineProps } from './types';
/**
 * [Go to docs](https://flowbite-svelte-icons.codewithshin.com/)
 * ## Props
 * @prop size = ctx.size || 'md'
 * @prop color = ctx.color || 'currentColor'
 * @prop title
 * @prop strokeWidth = ctx.strokeWidth || '2'
 * @prop desc
 * @prop class: className
 * @prop ariaLabel = 'chevron double up outline'
 * @prop ...restProps
 */
declare const ChevronDoubleUpOutline: import("svelte").Component<OutlineProps, {}, "">;
type ChevronDoubleUpOutline = ReturnType<typeof ChevronDoubleUpOutline>;
export default ChevronDoubleUpOutline;
